home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / src / Carmichael.readme < prev    next >
Encoding:
Text File  |  2002-11-09  |  1.1 KB  |  51 lines

  1. Short:    Search for Carmichael Numbers
  2. Author:   walternn@rupert.informatik.uni-stuttgart.de (Norman Walter)
  3. Uploader: walternn@rupert.informatik.uni-stuttgart.de (Norman Walter)
  4. Version:  2.0
  5. Type:     dev/src
  6. Requires: Scheme Interpreter (e.g. guile)
  7.  
  8. Scheme program for finding Carmichael Numbers.
  9. Carmichael Numbers are numbers, which cheat the Fermat Test.
  10.  
  11. Usage:
  12. ======
  13.  
  14. Step 1: cd into the directority where the file Carmichael.SCM
  15.         is located.
  16.  
  17. Step 2: Call Guile with
  18.  
  19.         guile -l Carmichael.SCM
  20.  
  21. Step 3: Enter
  22.  
  23.         (carmichael-bis <integer-number>)
  24.  
  25.         Place a integer number for <integer-number>.
  26.         The program will compute all Carmichael Numbers
  27.         up to this Integer.
  28.  
  29.         Example:
  30.  
  31.         (carmichael-bis 1800)
  32.  
  33.         This will produce the output:
  34.  
  35.         561
  36.         1105
  37.         1729
  38.  
  39.         These are all Carmichael Numbers up to 1800.
  40.  
  41.  
  42. A German manual is also included.
  43.  
  44.  
  45.  
  46. World Wide Web:
  47.  
  48. http://www.norman-interactive.com (my Homepage)
  49.  
  50. http://www.informatik.uni-stuttgart.de (University Stuttgart, Dept. of Computer Science)
  51.